home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / source.exe / POSIX / LS / MAKEFILE < prev    next >
Text File  |  1993-08-10  |  708b  |  30 lines

  1. !include <ntwin32.mak>
  2.  
  3. C_DEFINES=-DWIN_NT -DSTDC_HEADERS -D_POSIX_SOURCE -DDIRENT -DSTACK_DIRECTION=-1 -D__STDC__ -DDF_POSIX -D_POSIX_ -DCONVERT_TO_SLASHES -UCONVERT_TO_BACKSLASHES
  4. C_INCLUDES=-I..\include\bsd -I..\include\df
  5.  
  6. all: ls.exe
  7.  
  8. ..\bsdpsx\bsdpsx.lib:
  9.     cd ..\bsdpsx
  10.     nmake
  11.     cd ..\ls
  12.  
  13. ls.obj: ls.c *.h
  14.  
  15. print.obj: print.c *.h
  16.  
  17. cmp.obj: cmp.c *.h
  18.  
  19. util.obj: util.c *.h
  20.  
  21. lsglob.obj: lsglob.c *.h
  22.  
  23. glob.obj: glob.c *.h
  24.  
  25. ls.exe: ls.obj print.obj cmp.obj util.obj lsglob.obj glob.obj ..\bsdpsx\bsdpsx.lib
  26.     $(link) $(linkdebug) $(psxflags) -out:$*.exe $** $(psxlibs) ..\bsdpsx\bsdpsx.lib
  27.  
  28. .c.obj:
  29.     $(cc) $(cflags) $(psxvars) $(cvars) $(cdebug) $(C_DEFINES) $(C_INCLUDES) $*.c
  30.